home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 049a / tag3.zip / TAG.DOC < prev    next >
Text File  |  1991-10-27  |  4KB  |  66 lines

  1. TAG.EXE 6/1/91 5008 bytes (Consolidated utilities & .BAT)
  2.         6/8/91   Added search for TAGLINES.KEY along current path
  3.                  if not in current directory.
  4.         10/27/91 Combined QWK and TAG and added generic search
  5.                  with phone number removal.  This runs faster,
  6.                  since MESSAGES.DAT does not have to be expanded
  7.                  first.  (Sorry to those who download text, will
  8.                  do that version later) Program is now "QTAG".
  9.  
  10.    Quite often when reading the conference mail, the taglines are
  11. more interesting than some of the messages.  Rather than continue
  12. to collect the taglines manually, the "TAG" program will extract,
  13. sort, remove any duplicates and save them, automatically.
  14.  
  15. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  16.  
  17. Referenced Tagline files: QTAG, QWK, QSORT, DUP, ASC8toWP
  18.  
  19. QTAG    Extracts all taglines from the QWK MESSAGES.DAT file.  It then
  20.         sorts them, removes duplicates and headers, then lists them to
  21.         an output file.  ie.
  22.         QTAG                 ; Lists taglines from MESSAGES.DAT on CON
  23.         QTAG tag             ; Saves MESSAGES.DAT taglines in file TAG
  24.         QTAG file.dat tag    ; Saves QWK file file.dat taglines in TAG
  25.  
  26. QWK     Expands MESSAGES.DAT (or REP RBBS.MSG) files to text.
  27.  
  28. QSORT - is a Quicksort that can ignore case with the compare starting
  29.         at an optionally given column. (max entries is up to 9k lines
  30.         depending on avail. memory)  Type "QSORT"  for help.
  31.  
  32. DUP   - removes duplicates in a sorted list.  If no output file is
  33.         given the output goes to the console.  The compare can be
  34.         limited to a range by col and len. If that is done, the file
  35.         must have been sorted by that field.  Switches are available
  36.         to ignore case, ignore delimiters (-a) (ie "HI, There..." is
  37.         equal to "Hi there!") or what ever.  Type "DUP" for help.
  38.  
  39. ASC8toWP
  40.         Converts eight bit ASCII to WP5.1 format. If a HEADER.WP5 file
  41.         is present in the current set path, it will be used instead of
  42.         the defaults. HEADER.WP5 is an WP5.0 or WP5.1 header file that
  43.         should be empty except for margin, tag, and font settings. The
  44.         program ASC8toWP translates all characters except for 9 (tab),
  45.         10 (linefeed), 12 (form feed) and 13 (carriage returns).  Form
  46.         feeds are converted by WP.  Carriage returns are skipped. Tabs
  47.         are converted. Line feeds are converted to hard returns.
  48.         Note: WP doesn't translate the characters #00 through #31. It
  49.               also sometimes seems to have problems translating lines
  50.               ending in tabs or spaces.
  51.  
  52. Used as:  ( Could be a batch file )
  53.         >PKUNZIP rbbs.QWK MESSAGES.DAT      ; expand file
  54.         >QTAG tags.tmp                      ; extract taglines
  55.         >edit tags.tmp                      ; remove unwanted taglines
  56.         >COPY TAGS.OLD+tags.tmp tags.new    ; add old to new tags
  57.         >QSORT tags.new taglines            ; sort combimed list
  58.         >DEL tags.*                         ; delete old files
  59.         >DUP taglines TAGS.OLD -a           ; remove duplicates
  60.         >DEL taglines                       ; clean up
  61.  
  62.         >    At some point you may wish to further edit the taglines
  63.         >ASC8toWP TAGS.OLD TAGS.WP5         ; allow printing by WP
  64.         >COPY TAGS.OLD TAGLINES.MR          ; convert to SLMR format
  65.         etc..
  66.